home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / DF / Kap_2 / Df_2_1.dxr / Internal_26_Klik vymena stran.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  802 b   |  39 lines

  1. property Znacka
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #integer, #default: 1])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the visible of sprite (the spriteNum of me + 1) to 0
  16. end
  17.  
  18. on endSprite me
  19. end
  20.  
  21. on mouseEnter me
  22.   puppetSound(1, "Najezd")
  23.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  24.   set the visible of sprite (the spriteNum of me + 1) to 1
  25. end
  26.  
  27. on mouseLeave me
  28.   set the cursor of sprite the spriteNum of me to -1
  29.   set the visible of sprite (the spriteNum of me + 1) to 0
  30. end
  31.  
  32. on mouseDown me
  33.   puppetSound(1, "Klik")
  34. end
  35.  
  36. on mouseUp me
  37.   go(Znacka)
  38. end
  39.